Given
that I'm at the search page
6s 207ms
Show Error +
AssertionError: Expected to find h1 element
at createWorld.(anonymous) (/Applications/AMPPS/www/MVT19/lumia-2020-vue/tests/selenium/step-definitions/search.js:9:5)
at process._tickCallback (internal/process/next_tick.js:68:7)
AssertionError: Expected to find h1 element
at createWorld.(anonymous) (/Applications/AMPPS/www/MVT19/lumia-2020-vue/tests/selenium/step-definitions/search.js:9:5)
at process._tickCallback (internal/process/next_tick.js:68:7)
When
I enter search text "taklampa"
0s
Then(/^I enter search text "([^"]*)"$/, function(arg1, callback) {
// Write code here that turns the phrase above into concrete actions
callback(null, 'pending');
});
And
I click the search button
0s
Then(/^I click the search button$/, function(callback) {
// Write code here that turns the phrase above into concrete actions
callback(null, 'pending');
});
Then
the first test result should contain the word "taklampa"
0s
Then(/^the first test result should contain the word "([^"]*)"$/, function(arg1, callback) {
// Write code here that turns the phrase above into concrete actions
callback(null, 'pending');
});